1 <UserControl x:Class="VBSL4FileDragDrop.MainPage"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7 Width="640" Height="480">
8 <Border CornerRadius="10" Background="AliceBlue" Margin="10" BorderBrush="Gray" BorderThickness="1">
10 <TextBlock Text="Drop Image files here" Foreground="#FF0074CE" FontStyle="Italic" FontSize="24" VerticalAlignment="Center" HorizontalAlignment="Center"/>
11 <Canvas x:Name="LayoutRoot" Background="Transparent" AllowDrop="True" Drop="LayoutRoot_Drop" />